home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / onboard / layoutstrings.py < prev    next >
Text File  |  2009-10-01  |  1KB  |  51 lines

  1. #!/usr/bin/python
  2. from gettext import gettext as _
  3.  
  4. TRANSLATABLE_LAYOUT_STRINGS = [
  5.     _("Switch\nButtons"),
  6.     _("Settings"),
  7.     # The tab key on a computer keyboard
  8.     _("Tab"),
  9.     # The caps lock key on a computer keyboard
  10.     _("CAPS"),
  11.     # The control key on a computer keyboard
  12.     _("Ctrl"),
  13.     # The windows or meta key on a computer keyboard
  14.     _("Win"),
  15.     # The alt key on a computer keyboard
  16.     _("Alt"),
  17.     # The alt gr key on a computer keyboard
  18.     _("Alt Gr"),
  19.     # The return key on a computer keyboard
  20.     _("Return"),
  21.     # The menu key on a computer keyboard
  22.     _("Menu"),
  23.     # The insert key on a computer keyboard
  24.     _("Ins"),
  25.     # The home key on a computer keyboard
  26.     _("Hm"),
  27.     # The del key on a computer keyboard
  28.     _("Del"),
  29.     # The end key on a computer keyboard
  30.     _("End"),
  31.     # The page up key on a computer keyboard
  32.     _("Pg\nUp"),
  33.     # The page down key on a computer keyboard
  34.     _("Pg\nDn"),
  35.     # The num lock key on a computer keyboard
  36.     _("Nm\nLk"),
  37.     # The enter key on a computer keyboard
  38.     _("Ent"),
  39.     # The ecape key on a computer keyboard
  40.     _("ESC"),
  41.     # The print screen key on a computer keyboard
  42.     _("Prnt"),
  43.     # The scroll lock key on a computer keyboard
  44.     _("Scroll"),
  45.     # The pause key on a computer keyboard
  46.     _("Pause"),
  47. ]
  48.  
  49. raise Exception("This module should not be executed.  It should only be"
  50.         " parsed by i18n tools such as intltool.")
  51.